This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Java agent ans WAS5 ~Dana Prejipyvergon 26.Nov.03 12:19 PM a Web browser Domino Designer 6.0.2 CF2All Platforms
Sriram, I don't know where you get your information from (how Threads are used in agents), but this solved my problem.
I've been trying to connect to a JBoss 2.4.8 server's JMS and using the ThreadGroup technique I finally got it working. I don't know if this is what you meant, but here's how I did it, for anyone interested:
First off, I am running on a domino 6 client for development. I added a lot of JBoss jar files to the Lotus\Notes6\jvm\lib\ext directory. You need these avaiable.
QueueSender sender = session.createSender(queue);
Message message = session.createTextMessage("this is the message from the domino agent");
sender.send(message);